

#nav-items li[data-menuname="Register"],
#nav-items li[data-menuname="LOGIN"] {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

#nav-items li[data-menuname="LOGIN"] {
    margin-right: 16px;
}

#nav-items li[data-menuname="Register"] > *,
#nav-items li[data-menuname="LOGIN"] > * {
    text-decoration: none;
    color: #860303;
    background: #F5E080;
    font-weight: 600;
    width: 148px;
    max-width: 148px;
    display: block;
    text-align: center;
    padding: 15px 0;
    border-radius: 30px;
}

#nav-items li[data-menuname="Register"] > *:after,
#nav-items li[data-menuname="LOGIN"] > *:after {
    display: none;
}

.menu-container {
    margin: 0 0 0 auto;
}

@media screen and (max-width: 991px) {
    #nav-items li[data-menuname="LOGIN"] {
        margin-right: 0;
    }

}

@media screen and (max-width: 767px) {
    #nav-items li[data-menuname="REGISTER"], #nav-items li[data-menuname="LOGIN"] {
        justify-content: flex-start;
    }
}